home *** CD-ROM | disk | FTP | other *** search
/ Aminet 2 / Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso / Aminet / mus / play / DeliTracker1_37.lha / DeliTracker / Rexx / dt_prefswin.rexx < prev    next >
OS/2 REXX Batch file  |  1993-05-07  |  296b  |  26 lines

  1. /* DeliTracker - open/close PrefsWindow */
  2.  
  3. address 'rexx_DT'
  4. options results
  5.  
  6.  
  7. status G pwi
  8.  
  9. if result == "no" then do
  10.     openprefswin
  11. end
  12. else do
  13.     closeprefswin
  14. end
  15.  
  16.  
  17. status G pwi
  18.  
  19. if result == "no" then do
  20.     say "Setup Window is now closed..."
  21. end
  22. else do
  23.     say "Setup Window is now open..."
  24. end
  25.  
  26.